home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 4.iso / public / tarmail / Makefile < prev    next >
Makefile  |  1994-08-01  |  493b  |  23 lines

  1. #!smake
  2. #
  3. # This Makefile compiles and installs tarmail with IRIX
  4. #
  5.  
  6. include $(ROOT)/usr/include/make/commondefs
  7.  
  8. TARGETS = atob btoa
  9.  
  10. default all:    $(TARGETS)
  11.  
  12. include $(COMMONRULES)
  13.  
  14. install: all
  15.     @echo
  16.     @echo "...Must be in superuser mode to install..."
  17.     @echo
  18.     /etc/install -o -s -F /usr/local/bin atob
  19.     /etc/install -o -s -F /usr/local/bin btoa
  20.     /etc/install -o -s -F /usr/local/bin tarmail
  21.     /etc/install -o -s -F /usr/local/bin untarmail
  22.     /etc/install -o -s -F /usr/local/bin viewtarmail
  23.